home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / PROPSHT.PAK / PROPSHT.H < prev    next >
Text File  |  1997-05-06  |  1KB  |  53 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1995, 1996 by Borland International, All Rights Reserved
  4. //----------------------------------------------------------------------------
  5. #if !defined(PROPSHT_H)
  6. #define PROPSHT_H
  7.  
  8. // Menus
  9. //
  10. #define IDM_APPMENU     0x1000
  11. #define CM_PROPERTY     0x1001
  12. #define CM_PROPMODELESS 0x1002
  13.  
  14. // Icons
  15. //
  16. #define IDI_COLOR       0x1000
  17. #define IDI_SIZE        0x1001
  18.  
  19. // Dialogs
  20. //
  21. #define IDD_WINATTR        0x1000
  22. #define IDD_SAMPLEPAGE  0x1001
  23.  
  24. // Dialog Control IDs
  25. //
  26. #define IDC_BKCOLOR             200
  27. #define IDC_TEXTEDIT            201
  28.  
  29. #define IDC_GRP_PAGE            100
  30. #define IDC_SIM_APPLY           101
  31. #define IDC_SIM_XCELTOCLOSE     102
  32. #define IDC_SIM_CHANGED         103
  33. #define IDC_SIM_UNCHANGED       104
  34. #define IDC_GRP_SHEET           105
  35. #define IDC_ADDPAGE                106
  36. #define IDC_REMPAGE                107
  37. #define IDC_SELPAGE                108
  38. #define IDC_PAGEINFO               109
  39.  
  40.  
  41. //
  42. // Handler for child ID notifications that are handled at the child's parent
  43. //
  44. // Ctl's ID is passed as parameter:
  45. //
  46. //        void TMyWindow::BnClicks(uint btnID);
  47. //
  48. #define EV_CHILD_NOTIFY_AND_ID(id, notifyCode, method)\
  49.   {notifyCode, id, (TAnyDispatcher)::v_WPARAM_Dispatch,\
  50.    (TMyPMF)v_U_Sig(&TMyClass::method)}
  51.  
  52. #endif // PROPSHT_H
  53.